home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 52
/
Volume 52 - JOGO DISK .iso
/
Games
/
sandwichstacker.swf
/
scripts
/
DefineButton2_201
/
BUTTONCONDACTION on(press).as
Wrap
Text File
|
2007-09-27
|
555b
|
21 lines
on(press){
if(_parent.v.QuitWasPressed or _parent.v.HelpWasPressed or _parent.barre.action == "Swallow")
{
return undefined;
}
if(_parent.v.PauseWasPressed == undefined)
{
_parent.v.PauseWasPressed = false;
}
if(_parent.v.pause == false)
{
_parent.v.pause = true;
_parent.v.moving = false;
_parent.barre.action = "pauseAction";
_parent.barre.gotoAndPlay("pauseAction");
_parent.v.PauseWasPressed = true;
_parent.gotoAndStop("pause");
gotoAndStop(2);
}
}